home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / os2 / mred115g.zip / mred115g / med.syn < prev    next >
Text File  |  1996-11-11  |  38KB  |  1,037 lines

  1. #==================================================================
  2. #
  3. # Syntax Highlighting definition file for Mr.Ed
  4. #
  5. # Last update: 9.November 1996
  6. #
  7. #==================================================================
  8.  
  9.  
  10. #==================================================================
  11. # Predefined Display and Printer color names (case sensitive):
  12. #
  13. #      black
  14. #      white
  15. #      blue
  16. #      red
  17. #      pink
  18. #      green
  19. #      cyan
  20. #      yellow
  21. #      darkgray
  22. #      darkblue
  23. #      darkred
  24. #      darkpink
  25. #      darkgreen
  26. #      darkcyan
  27. #      brown
  28. #      palegray
  29. #
  30. #
  31. # Font Attributes:
  32. #
  33. #      normal                  (Display & Printer)
  34. #      bold                    (Display & Printer)
  35. #      underline               (Display & Printer)
  36. #      italic                  (Printer only)
  37. #      outline                 (Printer only)
  38. #
  39.  
  40. #==================================================================
  41. # Syntax highlighting for C/C++
  42.  
  43. files:  *.c *.c.* *.h *.cpp *.hpp *.cc *.c~* *.h~*
  44.  
  45. # if defined, this string is written to the extended file attributes
  46. # as file type (.TYPE) when a file is saved
  47. eaFileType: "C Code"
  48.  
  49. #sectionRegexp: ^[a-zA-Z0-9][a-zA-Z0-9_:*&~]+[a-zA-Z0-9 _:*&~]*\([^;]*$
  50. sectionDisplayRegexp:  ([a-zA-Z0-9]*[ \t]+[*]*)([a-zA-Z0-9_]+)([ ]*\(.*)
  51. sectionDisplayOrder: 2
  52. sectionDisplay: 5000, 1000
  53. #sectionBrowserMainKey: 2
  54. #sectionBrowserOrder:   2
  55.  
  56.  
  57. # online-help of Watcom C/C++ 10.6
  58. inf: view.exe  progref20   Dos*
  59. inf: view.exe  pmwin       Win*
  60. inf: view.exe  pmgpi       Gpi*
  61. inf: view.exe  pmmsg       WM_*
  62. inf: view.exe  pmref       [A-Z]*
  63. inf: view.exe  clib        *
  64.  
  65.  
  66. # first define some handy colors
  67. defineColor: myDarkYellow  160 160   0
  68. defineColor: myDarkBlue      0   0 150
  69. defineColor: myDarkRed     200   0   0
  70. defineColor: myLightGray   220 220 220
  71.  
  72. # set the general textwindow colors
  73. foregroundColor:  black
  74. backgroundColor:  white
  75. blockColor:       myLightGray
  76.  
  77. # treat reserved words case sensitive
  78. caseSensitive:  yes
  79.  
  80. # search comments in string constants (set this to "no" for better performance)
  81. checkCommentInString: no
  82.  
  83. # the reserved words...
  84. color: myDarkYellow, normal, myDarkYellow, italic
  85. token: #define #elif #else #endif #error #ifdef #ifndef #if #include
  86. token: #line #pragma #undef elif inline warn
  87.  
  88. color: blue, normal, blue, bold
  89. token: asm auto break case catch cdecl char class const continue default
  90. token: delete double do  else enum extern far float for friend goto huge
  91. token: if interrupt int long near new operator pascal private protected
  92. token: public register return short signed sizeof static struct switch
  93. token: template this throw try typedef union unsigned virtual void
  94. token: volatile while yield
  95.  
  96. color: red, normal, red, bold
  97. token: TRUE FALSE NULL
  98.  
  99.  
  100. # set the characters which open/close string and character constants
  101. color:  darkpink, normal, darkpink, italic
  102. string:  "
  103. char:    '
  104.  
  105.  
  106. # set the symbols
  107. color:  myDarkRed, normal, myDarkRed, normal
  108. symbol: ><{}()+-:&!|=~?.;,^/*
  109. color:  darkred, normal, darkred, normal
  110. symbol: []
  111.  
  112. # set the symbol which opens the parameter list of a C-function
  113. color:  myDarkBlue, normal, myDarkBlue, bold
  114. funcParml:  (
  115.  
  116. # set the escape character
  117. color:  red, normal, red, normal
  118. literal: \
  119.  
  120. # comments
  121. color:     darkcyan, normal, darkcyan, outline
  122. eolCom:    //
  123. openCom:   /*
  124. closeCom:  */
  125.  
  126. # set the column in which each of the end-of-line comment sequence
  127. # must appear in order to be recognized as a comment.
  128. # A zero value indicates that the comment sequence should be recognized
  129. # in all columns.
  130. comCol:  0
  131.  
  132. #==================================================================
  133. # Syntax highlighting for Java
  134.  
  135. files:  *.java
  136.  
  137. caseSensitive:  no
  138. checkCommentInString: no
  139.  
  140. # first define some handy colors
  141. defineColor: myDarkYellow  160 160   0
  142. defineColor: myDarkBlue      0   0 150
  143. defineColor: myDarkRed     200   0   0
  144. defineColor: myLightGray   220 220 220
  145.  
  146. color: blue, normal, blue, bold
  147. token: abstract AudioClip boolean break byte byvalue case catch char class const default
  148. token: do double else Enumeration extends false final finally float for goto Graphics hashtable if
  149. token: image implements import instanceof int interface long native new null Object
  150. token: package private protected public return short static string super switch
  151. token: synchronized this Thread threadsafe throw throws transient true try url vector void
  152. token: while continue
  153.  
  154. # set the characters which open/close string and character constants
  155. color:  darkpink, normal, darkpink, italic
  156. string:  "
  157. char:    '
  158.  
  159.  
  160. # set the symbols
  161. color:  myDarkRed, normal, myDarkRed, normal
  162. symbol: ><{}()+-:&!|=~?.;,^/*
  163. color:  darkred, normal, darkred, normal
  164. symbol: []
  165.  
  166. # set the symbol which opens the parameter list of a C-function
  167. color:  myDarkBlue, normal, myDarkBlue, normal
  168. funcParml:  (
  169.  
  170. # set the escape character
  171. color:  red, normal, red, normal
  172. literal: \
  173.  
  174. # comments
  175. color:     darkcyan, normal, darkcyan, outline
  176. eolCom:    //
  177. openCom:   /*
  178. closeCom:  */
  179.  
  180. # set the column in which each of the end-of-line comment sequence
  181. # must appear in order to be recognized as a comment.
  182. # A zero value indicates that the comment sequence should be recognized
  183. # in all columns.
  184. comCol:  0
  185.  
  186.  
  187. #==================================================================
  188. # Syntax highlighting for 32-bit Canterbury Modula-2.
  189. #
  190. #    Note: Canterbury Modula-2 is being shipped by:
  191. #
  192. #    Mill, Hill & Canterbury Group, Ltd.
  193. #    P.O.BOX 717
  194. #    Belen, NM 87002, USA
  195. #
  196. #    Internet: mhc@webcom.com
  197. #    WWW: http://www.webcom.com/mhc/welcome.html
  198. #
  199.  
  200. files:  *.mod *.def
  201.  
  202. sectionRegexp: (^[ ]*)(PROCEDURE)[ ]+([a-zA-Z0-9_\$]+)
  203. sectionDisplayRegexp: (^[ ]*)(PROCEDURE)[ ]+([a-zA-Z0-9_\$]+)
  204. sectionBrowserMainKey:   3
  205. sectionBrowserOrder: 2, 3
  206. sectionDisplayOrder: 2, 3
  207. sectionDisplay: 4000, 500
  208.  
  209. caseSensitive:  yes
  210. checkCommentInString: no
  211.  
  212. # first define some handy colors
  213. defineColor: myDarkYellow  160 160   0
  214. defineColor: myDarkBlue      0   0 150
  215. defineColor: myDarkRed     200   0   0
  216. defineColor: myLightGray   220 220 220
  217.  
  218. color: blue
  219. token: AND        DO        IF             OF        SET
  220. token: ARRAY      ELSE      IMPLEMENTATION OR        THEN
  221. token: BEGIN      ELSIF     IMPORT         POINTER   TO
  222. token: BY         END       IN             PROCEDURE TYPE
  223. token: CASE       EXIT      LOOP           QUALIFIED UNTIL
  224. token: CONST      EXPORT    MOD            RECORD    VAR
  225. token: DEFINITION FOR       MODULE         REPEAT    WHILE
  226. token: DIV        FROM      NOT            RETURN    WITH
  227. token: FAR        IS        NEAR           SHL       SHR     XOR
  228. token: ABS        FLOAT     LONGREAL       SHORTCARD
  229. token: BITSET     HALT      LONGTRUNC      SHORTFLOAT
  230. token: BOOLEAN    HIGH      MAX            SHORTINT
  231. token: CAP        INC       MIN            SHORTNIL
  232. token: CARDINAL   INCL      NEW            SHORTREAL
  233. token: CHAR       INTEGER   NIL            SHORTTRUNC
  234. token: CHR        LONG      ODD            SIZE
  235. token: DEC        LONGCARD  ORD            TRUE
  236. token: DISPOSE    LONGFLOAT PROC           TRUNC
  237. token: EXCL       LONGINT   REAL           VAL
  238. token: FALSE      LONGNIL   SHORT
  239.  
  240. # set the characters which open/close string and character constants
  241. color:  darkpink
  242. string:  "
  243. char:    '
  244.  
  245. # set the symbols
  246. color:  myDarkRed
  247. symbol: ><{}()+-:&!|=~?.;,^/*
  248. color:  darkred
  249. symbol: []
  250.  
  251. # set the symbol which opens the parameter list of a procedure
  252. color:  myDarkBlue
  253. funcParml:  (
  254.  
  255. # set the escape character
  256. color:  red
  257. literal: \
  258.  
  259. # comments
  260. color:     darkcyan
  261. openCom:   (*
  262. closeCom:  *)
  263.  
  264. # set the column in which each of the end-of-line comment sequence
  265. # must appear in order to be recognized as a comment.
  266. # A zero value indicates that the comment sequence should be recognized
  267. # in all columns.
  268. comCol:  0
  269.  
  270.  
  271. #==================================================================
  272. # Syntax highlighting for med.syn
  273.  
  274. files:  med*.syn  *.syn
  275.  
  276. sectionRegexp:         ^files:
  277. sectionDisplayRegexp:  (^files:[ ]*)(.*)
  278. sectionBrowserMainKey: 2
  279. sectionBrowserOrder:   2
  280. sectionDisplayOrder:   2
  281.  
  282. caseSensitive:  yes
  283. checkCommentInString: no
  284.  
  285. color: darkpink, normal, darkpink, normal
  286. token: files:
  287.  
  288. color: blue, normal, blue, bold
  289. token: backgroundColor: blockColor: caseSensitive: char: checkCommentInString:
  290. token: closeCom: comCol: defineColor: eaFileType: eolCom: foregroundColor:
  291. token: funcParml: inf: literal: openCom: string: symbol: token:
  292. token: sectionRegexp: sectionBrowserMainKey: sectionBrowserOrder: sectionDisplay:
  293. token: sectionDisplayRegexp: sectionDisplayOrder:
  294.  
  295. color: red, normal, red, normal
  296. token: color:
  297.  
  298. color:     darkcyan, normal, darkcyan, outline
  299. eolCom:    #
  300. comCol:    1
  301.  
  302.  
  303.  
  304. #==================================================================
  305. # Syntax highlighting for Mr.Ed keyboard configuration file
  306.  
  307. files:  *.kbd *.tlb
  308.  
  309. caseSensitive:  no
  310. checkCommentInString: no
  311.  
  312. color: blue, normal, blue, normal
  313. token: key:
  314.  
  315. color: red, normal, red, bold
  316. token: addMacros appendBlkToClipbrd backtab blkEnd blkStart blkTolower
  317. token: blkToupper bs capitalizeWord cascadeBufs cascadeViews centerLine
  318. token: close closeAllViews closeView clrToEndOfLine columnBlkMode compress copyBlk
  319. token: copyBlkToClipbrd cr createView cursorDown cursorLeft cursorRight
  320. token: cursorUp cutBlkToClipbrd delBlk delChar delLine delWord
  321. token: exit expand find findNext gotoBlkEnd gotoBlkStart
  322. token: gotoEndOfFile gotoEndOfLine gotoLine gotoNextWord gotoPrevWord gotoStartOfLine
  323. token: gotoTopOfFile gotoEndOfWord helpGeneral helpIndex helpContents import insertMode
  324. token: jumpBookmark jumpNextBookmark jumpPrevBookmark
  325. token: jumpToFunc kbdEdit kbdLoad kbdSave keywordHelp
  326. token: lineBlkMode loadMacros macroManager markNextWord markPrevWord
  327. token: markToBeginOfFile markToEndOfFile markToEndOfLine markToStartOfLine markWord match
  328. token: maximizeBufs maximizeViews moveBlk new nextBuf nextErr
  329. token: nextView open overwriteMode pasteClipbrdColumn pasteClipbrdLine pasteLastDelLine pasteLine
  330. token: pageDown pageUp pickLine prevBuf prevErr prevView
  331. token: print printRaw recMacro redo replace save saveAll
  332. token: saveAndExit saveAs saveBlk saveMacros setBookmark settings
  333. token: setupPrinter shiftLeft shiftRight sort swapLines insertTab
  334. token: tileBufsHorizontal tileBufsVertical tileViewsHorizontal tileViewsVertical
  335. token: toggleBlkMode toggleWrapMode toggleWriteMode toolManager toolOutputWin
  336. token: truncWord undo unmark winMon wordTolower wordToupper wrapLinesBlk wrapLinesTxt
  337. token: jumpPrevSection jumpNextSection jumpToSection delLeftBlanks
  338. token: delRightBlanks reloadSyntax selectAll saveCursor restoreCursor
  339. token: drawLeft drawRight drawUp drawDown drawMode0 drawMode1 drawMode2 drawMode3
  340. token: drawMode4 drawMode5 drawMode6 drawMode7 drawMode8 drawMode9 drawRect
  341. token: returnToSection lineNumbering
  342.  
  343. color: darkgreen, normal, darkgreen, bold
  344. token: menuBlock menuEdit menuFile menuHelp menuMacro menuOptions menuSearch
  345. token: menuTools menuBuffer menuWindow
  346.  
  347. color: darkblue, normal, darkblue, bold
  348. token: tool0 tool1 tool2 tool3 tool4 tool5 tool6 tool7 tool8 tool9
  349. token: tool10 tool11 tool12 tool13 tool14 tool15 tool16 tool17 tool18 tool19
  350.  
  351.  
  352. color:     darkcyan, normal, darkcyan, outline
  353. eolCom:    #
  354. comCol:    1
  355.  
  356.  
  357. #==================================================================
  358. # Syntax highlighting for config.sys
  359.  
  360. files:  config.sys
  361.  
  362. sectionRegexp:        ^BASEDEV=|^DEVICE=|^RUN=|^SET
  363. sectionDisplayRegexp: (^BASEDEV=|^DEVICE=|^RUN=|^SET)[ ]*(.*)
  364. sectionBrowserMainKey: 1
  365. sectionBrowserOrder:   1, 2
  366. sectionDisplayOrder:
  367.  
  368.  
  369. inf: view.exe  cmdref  *
  370.  
  371. caseSensitive:  no
  372. checkCommentInString: no
  373.  
  374. color: darkpink, normal, darkpink, bold
  375. token: BASEDEV
  376.  
  377. color: darkred, normal, darkred, bold
  378. token: DEVICE
  379.  
  380. color: blue, normal, blue, bold
  381. token: AUTOSTART BOOKSHELF BUFFERS CODEPAGE COMSPEC COUNTRY DELDIR
  382. token: DEVINFO DISKCACHE DPATH DSPPATH GLOSSARY HELP IFS IOPL IPF_KEYS KEYS
  383. token: LIBPATH MAXWAIT MEMMAN MMBASE NCDEBUG OS2_SHELL PATH PRINTMONBUFSIZE
  384. token: PRIORITY_DISK_IO PROMPT PROTSHELL RESTARTOBJECTS RUN RUNWORKPLACE
  385. token: SOMDDIR SOMIR SWAPPATH SYSTEM_INI THREADS TIMESLICE USER_INI
  386. token: VIDEO_DEVICES VIO_SVGA
  387.  
  388. color: red, normal, red, bold
  389. token: SET
  390.  
  391. color: red, normal, red, bold
  392. symbol: +-*/&~=,;()[]{}|^<>#%
  393.  
  394. color:   darkcyan, normal, darkcyan, outline
  395. eolCom:  REM
  396. comCol:  1
  397.  
  398. #==================================================================
  399. # Syntax highlighting for Makefiles
  400.  
  401. files:  makefile*  *.mak *.mif
  402.  
  403. inf: view.exe  tools  *
  404.  
  405. caseSensitive:  yes
  406. checkCommentInString: no
  407.  
  408. color: blue, normal, blue, bold
  409. token: !elif !else !endif !error !ifdef !ifndef !if !include !undef
  410.  
  411. color: red, normal, red, normal
  412. symbol: $&@()=*+-/[],#<>:;
  413.  
  414. color:  darkcyan, normal, darkcyan, outline
  415. eolCom: #
  416.  
  417. #==================================================================
  418. # Syntax highlighting for IPF documents
  419.  
  420. files: *.ipf
  421. inf: view.exe  ipfc20   *
  422.  
  423. sectionRegexp:         :[Hh][0-9]
  424. sectionDisplayRegexp:  (:[Hh][0-9][ ]*)(res=[0-9]*\.)[ ]*(.*)
  425. sectionBrowserMainKey: 3
  426. sectionBrowserOrder:   1, 3
  427. sectionDisplayOrder:   1, 3
  428. sectionDisplay: 4000, 1000
  429.  
  430. caseSensitive: no
  431. checkCommentInString: no
  432.  
  433. defineColor: myDarkYellow  160 160   0
  434. defineColor: myDarkBlue      0   0 150
  435. defineColor: myDarkRed     200   0   0
  436.  
  437. color: red, normal, red, bold
  438. token: :link :elink.
  439.  
  440. color: darkpink, normal, darkpink, bold
  441. token: :ehp1. :ehp2. :ehp3. :ehp4. :ehp5. :ehp6. :ehp7. :ehp8. :ehp9.
  442. token: :hp1. :hp2. :hp3. :hp4. :hp5. :hp6. :hp7. :hp8. :hp9.
  443.  
  444. color: blue, normal, blue, bold
  445. token: :acviewport align :artlink. :artwork aspotref author backm body
  446. token: .br :caution :cgraphic. :color
  447. token:  compact :ctrldef. :ctrl :c. danger :ddf :ddhd :dd defn
  448. token: detable deuserdoc dfname dfn dlinenum dln :dl :docprof
  449. token: dthd :dt eaddress earea :eartlink. :ecaution. :ecgraphic.
  450. token: :ectrldef. edanger :edl. :efig. efn ehelp :ehide. ehpart ehpt
  451. token: ehp eh einfo elines :ent. :eol. :eparml. eprolog eregion
  452. token: :esl. :etable. etitle :eul. :euserdoc. :ewarning. :exmp. :figcap. :fig.
  453. token: fnref :fn :font frontm :h1 :h2 :h3 :h4 :h5 :h6 :h7 :h8 :h9
  454. token: hdref :hide  hpart
  455. token: hpt :i1 :i2 :icmd .im index inform info :isyn launch :lines
  456. token: :li. :lm :lp. :note :nt :ol :parml :pbutton :pd. prolog :pt. :p.
  457. token: region res :rm :row. :sl spotref spot :table tipage :title. tline
  458. token: toc :ul :userdoc. :warning :xmp.
  459.  
  460. symbol: :.
  461.  
  462. color: myDarkYellow, normal, myDarkYellow, bold
  463. token: &. &asterisk. &colon. ÷  &darrow.  &larrow. &mu.
  464. token: ¼. ½. &percent. &semi.  &sqbul. ².
  465.  
  466. color: red, normal, red, bold
  467. symbol: &=
  468.  
  469. color: darkcyan, normal, darkcyan, outline
  470. eolCom: .*
  471.  
  472. #==================================================================
  473. # Syntax highlighting for IPP documents
  474.  
  475. files: *.ipp
  476. inf: view.exe  ipfc20   *
  477.  
  478. sectionRegexp:        :[Hh][0-9]
  479. sectionDisplayRegexp: (:[Hh][0-9][ ]*)(res=&)([a-zA-Z0-9_]*\.)[ ]*([a-zA-Z0-9_]*\.)(.*)
  480. sectionBrowserMainKey: 5
  481. sectionBrowserOrder:   1, 5, 3, 4
  482. sectionDisplayOrder:   1, 5
  483.  
  484. caseSensitive: no
  485. checkCommentInString: no
  486.  
  487. defineColor: myDarkYellow  160 160   0
  488. defineColor: myDarkBlue      0   0 150
  489. defineColor: myDarkRed     200   0   0
  490.  
  491. color: red, normal, red, bold
  492. token: :link :elink.
  493.  
  494. color: darkpink, normal, darkpink, bold
  495. token: :ehp1. :ehp2. :ehp3. :ehp4. :ehp5. :ehp6. :ehp7. :ehp8. :ehp9.
  496. token: :hp1. :hp2. :hp3. :hp4. :hp5. :hp6. :hp7. :hp8. :hp9.
  497.  
  498. color: blue, normal, blue, bold
  499. token: :acviewport align :artlink. :artwork aspotref author backm body
  500. token: .br :caution :cgraphic. :color
  501. token:  compact :ctrldef. :ctrl :c. danger :ddf :ddhd :dd defn
  502. token: detable deuserdoc dfname dfn dlinenum dln :dl :docprof
  503. token: dthd :dt eaddress earea :eartlink. :ecaution. :ecgraphic.
  504. token: :ectrldef. edanger :edl. :efig. efn ehelp :ehide. ehpart ehpt
  505. token: ehp eh einfo elines :ent. :eol. :eparml. eprolog eregion
  506. token: :esl. :etable. etitle :eul. :euserdoc. :ewarning. :exmp. :figcap. :fig.
  507. token: fnref :fn :font frontm :h1 :h2 :h3 :h4 :h5 :h6 :h7 :h8 :h9
  508. token: hdref :hide  hpart
  509. token: hpt :i1 :i2 :icmd .im index inform info :isyn launch :lines
  510. token: :li. :lm :lp. :note :nt :ol :parml :pbutton :pd. prolog :pt. :p.
  511. token: region res :rm :row. :sl spotref spot :table tipage :title. tline
  512. token: toc :ul :userdoc. :warning :xmp.
  513.  
  514. symbol: :.
  515.  
  516. color: myDarkYellow, normal, myDarkYellow, bold
  517. token: &. &asterisk. &colon. ÷  &darrow.  &larrow. &mu.
  518. token: ¼. ½. &percent. &semi.  &sqbul. ².
  519.  
  520. color: red, normal, red, bold
  521. symbol: &=
  522.  
  523. color: darkcyan, normal, darkcyan, outline
  524. eolCom: .*
  525.  
  526. #==================================================================
  527. # Syntax highlighting for Resource Files
  528.  
  529. files: *.rc *.dlg
  530.  
  531. sectionRegexp:        ^DLGTEMPLATE
  532. sectionDisplayRegexp: (^DLGTEMPLATE[ ]+)[ ]*([a-zA-Z0-9_]*)(.*)
  533. sectionBrowserMainKey: 2
  534. sectionBrowserOrder:   2
  535. sectionDisplayOrder:   2
  536. sectionDisplay: 4000, 500
  537.  
  538.  
  539. inf: view.exe  toolinfo  *
  540.  
  541. caseSensitive: yes
  542. checkCommentInString: no
  543.  
  544. color: red, normal, red, bold
  545. token: #define #else #endif #error #ifdef #ifndef #if #include
  546. token: #line #pragma #undef
  547.  
  548. color: blue, normal, blue, bold
  549. token: ACCELTABLE ASSOCTABLE AUTOCHECKBOX AUTORADIOBUTTON BITMAP CHECKBOX CODEPAGE
  550. token: COMBOBOX CONTAINER CONTROL CTEXT CTLDATA  DEFPUSHBUTTON DIALOG DLGINCLUDE
  551. token: DLGTEMPLATE EDITTEXT ENTRYFIELD FONT FRAME GROUPBOX HELPITEM HELPSUBITEM
  552. token: HELPSUBTABLE HELPTABLE ICON LISTBOX LTEXT MENU MENUITEM MESSAGETABLE MLE
  553. token: NOTEBOOK POINTER PRESPARAMS PUSHBUTTON RADIOBUTTON RCDATA
  554. token: RESOURCE RTEXT SLIDER SPINBUTTON STRINGTABLE SUBITEMSIZE SUBMENU
  555. token: VALUESET WINDOW WINDOWTEMPLATE
  556.  
  557. color: red, normal, red, bold
  558. symbol: {}[]().=+-*/:;<>|&,~!^?
  559. literal: \
  560.  
  561. color:  darkpink, normal, darkpink, italic
  562. string: "
  563. char: '
  564.  
  565. color: darkcyan, normal, darkcyan, outline
  566. openCom: /*
  567. closeCom: */
  568. eolCom: //
  569.  
  570. #==================================================================
  571. # Syntax highlighting for OS/2 REXX files
  572.  
  573. files: *.cmd
  574.  
  575. sectionRegexp:        ^[a-zA-Z0-9_]+:($|[ ]*/)
  576. sectionDisplayRegexp: (^[a-zA-Z0-9_]+):($|[ ]*/)
  577. sectionBrowserMainKey: 1
  578. sectionBrowserOrder:   1
  579. sectionDisplayOrder:   1
  580. sectionDisplay: 4000, 500
  581.  
  582. inf: view.exe  rexx  *
  583.  
  584. caseSensitive: no
  585. checkCommentInString: no
  586.  
  587. color: blue, normal, blue, bold
  588. token: abbrev abs address all arg b2x beep bitand bitor bitxor by c2d c2x call
  589. token: center centre charin charout chars compare condition copies d2c
  590. token: d2x datatype date delstr delword digits directory do drop else
  591. token: endlocal end error errortext exit expose failure filespec forever format form for fuzz
  592. token: if insert interpret iterate lastpos leave left length linein
  593. token: lineout lines max min name nop numeric on options otherwise overlay parse pos
  594. token: procedure pull push queued queue random return reverse right
  595. token: rxmessagebox rxqueue say select setlocal signal sign sourceline
  596. token: space stream strip substr subword symbol syscls syscreateobject
  597. token: syscurpos syscurstate sysderegisterobjectclass sysdestroyobject
  598. token: sysdriveinfo sysdrivemap sysdropfuncs sysfiledelete sysfilesearch
  599. token: sysfiletree sysgetea sysgetkey sysgetmessage sysini sysmkdir
  600. token: sysos2ver sysputea sysqueryclasslist sysregisterobjectclass
  601. token: sysrmdir syssearchpath sysseticon syssetobjectdata syssleep
  602. token: systempfilename systextscreenread systextscreensize
  603. token: syswaitnamedpipe then time to trace translate trunc until upper value
  604. token: verify when while wordindex wordlength wordpos words word x2b x2c
  605. token: x2d xrange
  606.  
  607.  
  608.  
  609.  
  610. color: red, normal, red, bold
  611. symbol: \{}[]().=+-*/:;<>|&,~!^?
  612.  
  613. color:  darkpink, normal, darkpink, italic
  614. string: "
  615. char: '
  616.  
  617. color:  darkcyan, normal, darkcyan, outline
  618. openCom: /*
  619. closeCom: */
  620.  
  621.  
  622. #==================================================================
  623. # Syntax highlighting for LATEX files
  624.  
  625. files: *.tex
  626.  
  627. sectionRegexp:         (^\\section|^\\subsection)
  628. sectionDisplayRegexp:  (^\\section|^\\subsection)[ ]*{([^}]+)
  629. sectionBrowserMainKey: 2
  630. sectionBrowserOrder:   2, 1
  631. sectionDisplayOrder:   2, 1
  632. sectionDisplay: 5000, 1000
  633.  
  634. inf: view.exe latex *
  635.  
  636. caseSensitive: yes
  637. checkCommentInString: no
  638.  
  639. color: blue, normal, blue, bold
  640. token: !∩ "∩ "- "< "> "`"ck "a "A "e "E "i "I "o "O "u "U "s "| ?∩ | ~
  641. token: \! \" \# \$ \% \& \' \( \) \+ \, \- \. \/ \: \; \< \= \> \@. \[
  642. token: \\ \\* \] \^ \_ \` \{ \| \} \~ \a= \a∩ \a` \AA \aa \abovedisplayskip
  643. token: \abovedisplayshortskip \abstractname \acute \addcontentsline
  644. token: \address \addtime \addtocontents \addtocounter \addtolength
  645. token: \addvspace \AE \ae \aleph \Alph \alph \alpha \alsoname \amalg
  646. token: \and \angle \appendixname \approx \arabic \arccos \arcsin \arctan
  647. token: \arg \arraycolsep \arrayrulewidth \arraystretch \ast \asymp \atop
  648. token: \author \b \backmatter \backslash \bar \baselineskip
  649. token: \baselinestretch \begin \belowdisplayskip \belowdisplayshortskip
  650. token: \beta \bezier \bibname \bf \bfdefault \bfseries \bibitem
  651. token: \bibliography \bibliographystyle \big \Big \bigcap \bigcirc \bigcup
  652. token: \bigg \Bigg \biggl \Biggl \biggm \Biggm \biggr \Biggr \bigl \Bigl
  653. token: \bigm \Bigm \bigodot \bigoplus \bigotimes \bigr \Bigr \bigtriangledown
  654. token: \bigtriangleup \bigskip \bigskipamount \bigsqcup \biguplus \bigvee
  655. token: \bigwedge \bmod \boldmath \bot \botfigrule \bottomfraction \bowtie
  656. token: \Box \breve \bullet \c \cal \cap \caption \captions \cc \ccname \cdot
  657. token: \cdots \centering \centerline \chapter \chapter* \chaptername \check
  658. token: \chi \choose \circ \circle \circle* \cite \cleardoublepage \clearpage
  659. token: \cline \closing \clubsuit \color \colorbox \columnsep \columnseprule
  660. token: \cong \contentsline \contentsname \coprod \copyright \copyrightspace
  661. token: \cos \cosh \cot \coth \csc \cup \d \dag \dagger \dashbox \dashv \date
  662. token: \dblfigrule \dblfloatpagefraction \dblfloatsep \dbltextfloatsep
  663. token: \dbltopfraction \dbltopnumber \ddag \ddagger \ddot \ddots \definecolor
  664. token: \deg \DeleteShortVerb \Delta \delta \depth \det \Diamond \diamond
  665. token: \diamondsuit \dim \discretionary \displaystyle \div \documentclass
  666. token: \documentstyle \dot \doteq \dotfill \doublerulesep \Downarrow
  667. token: \downarrow \dq \ell \em \emailid \emailhost \emph \emptyset \encl
  668. token: \enclname \end \enlargethispage \enlargethispage* \ensuremath
  669. token: \epsilon \equiv \eta \evensidemargin \exists \exp \extracolsep \fbox
  670. token: \fboxrule \fboxsep \fcolorbox \figurename \fill \flat
  671. token: \floatpagefraction \floatsep \flq \flqq \flushbottom \fnsymbol
  672. token: \fontencoding \fontfamily \fontseries \fontshape \fontsize \footnote
  673. token: \footnotemark \footnoterule \footnoteseq \footnotesize \footnotetext
  674. token: \footskip \forall \frac \frame \framebox \frenchspacing \frontmatter
  675. token: \frown \frq \frqq \fussy \Gamma \gamma \gcd \ge \geq \germanTeX \gets
  676. token: \gg \glossary \glossaryentry \glq \glqq \graphpaper \grave \grq \grqq
  677. token: \H \hat \hbar \headheight \headsep \headtoname \heartsuit \height
  678. token: \hfill \hline \hoffset \hom \hookleftarrow \hookrightarrow \hrulefill
  679. token: \hspace \hspace* \huge \Huge \hyphenation \i \iff \ifthenelse \Im
  680. token: \imath \in \include \includeonly \indent \index \indexentry \indexname
  681. token: \indexspace \inf \infty \input \int \intextsep \invisible \iota \it
  682. token: \itdefault \item \itemindent \itemsep \itshape \j \jmath \Join \jot
  683. token: \kappa \ker \hill \L \l \label \labelenum \labelitem \labelsep
  684. token: \labelwidth \Lambda \lambda \langle \language \LARGE \large \Large
  685. token: \LaTeX \LaTeXe \lceil \ldots \le \leadsto \left \Leftarrow \leftarrow
  686. token: \lefteqn \leftharpoondown \leftharpoonup \leftline \leftmargin
  687. token: \Leftrightarrow \leftrightarrow \leq \lfloor \lg \lhd \lim \liminf
  688. token: \limits \limsup \line \linebreak \linethickness \listfigurename
  689. token: \listfiles \listoffigures \listoftables \listparindent \listtablename
  690. token: \ll \ln \location \log \Longleftarrow \longleftarrow
  691. token: \Longleftrightarrow \longleftrightarrow \longmapsto \Longrightarrow
  692. token: \longrightarrow \mainmatter \makebox \makeglossary \makeindex
  693. token: \makelabel \makelabels \MakeShortVerb \maketitle \mapsto \marginpar
  694. token: \marginparpush \marginparsep \marginparwidth \markboth \markright
  695. token: \mathbf \mathcal \mathindent \mathit \mathnormal \mathrm \mathsf
  696. token: \mathtt \mathversion \max \mbox \mddefault \mdseries \medskip
  697. token: \medskipamount \mho \mid \min \mit \models \mp \mu \multicolumn
  698. token: \multiput \myref \nabla \name \natural \nearrow \neg \neq \newboolean
  699. token: \newcommand \newcommand* \newcounter \newenvironment \newenvironment*
  700. token: \newfont \newlength \newline \newpage \newsavebox \newtheorem \ni
  701. token: \nocite \nocorr \nofiles \noindent \nolimits \nolinebreak
  702. token: \nonfrenchspacing \nonumber \nopagebreak \normalcolor \normalfont
  703. token: \normalmarginpar \normalsize \not \notin \nu \numberline \nwarrow \O
  704. token: \o \oddsidemargin \odot \OE \oe \oint \Omega \omega \ominus \onecolumn
  705. token: \onlynotes \onlyslides \opening \oplus \originalTeX \oslash \otimes
  706. token: \oval \overbrace \overline \P \pagebreak \pagecolor \pagename
  707. token: \pagenumbering \pageref \pagestyle \paperheight \paperwidth \par
  708. token: \par \paragraph \paragraph* \parallel \parbox \parindent \parsep
  709. token: \parskip \part \part* \partial \partname \partopsep \perp \Phi \phi
  710. token: \Pi \pi \pm \pmod \poptabs \pounds \Pr \prec \preceq \prefacename
  711. token: \prime \printindex \prod \propto \protect \providecommand
  712. token: \providecommand* \ps \Psi \psi \pushtabs \put \qbezier \quad \qquad
  713. token: \r \raggedbottom \raggedleft \raggedright \raisebox \rangle \rceil \Re
  714. token: \ref \refname \refstepcounter \renewcommand \renewcommand*
  715. token: \renewenvironment \renewenvironment* reversemarginpar \rfloor \rhd
  716. token: \rho \right \Rightarrow \rightarrow \rightharpoondown \rightharpoonup
  717. token: \rightleftharpoons \rightline \rightmargin \rm \rmdefault \rmfamily
  718. token: \Roman \roman \rq \rule \S \samepage \savebox \sb \sbox \sc \scdefault
  719. token: \scriptscriptstyle \scriptsize \scriptstyle \scshape \searrow \sec
  720. token: \section \section* \see \seename \selectfont \selectlanguage
  721. token: \setboolean \setcounter \setlength \setminus \settime \settodepth
  722. token: \settowidth \sf \sfdefault \sffamily \sharp \shortstack \showhyphens
  723. token: \Sigma \sigma \signature \sim \simwq \sin \sinh \sl \sldefault \sloppy
  724. token: \slshape \small \smallskip \smallskipamount \smile \sp \spadesuit
  725. token: \special \sqcap \sqrt \sqsubset \sqsubseteq \sqsupset \sqsupseteq
  726. token: \SS \ss \stackrel \star \stepcounter \stretch \subitem \subject
  727. token: \subparagraph \subparagraph* \subsection \subsection* \subsubitem
  728. token: \subsubsection \subsubsection* \subset \subseteq \succ \succeq \sum
  729. token: \sup \suppressfloats \supset \supseteq \surd \swarrow \symbol \t
  730. token: \tabbingsep \tabcolsep \tablename \tableofcontents \tabularnewline
  731. token: \tan \tanh \tau \telephone \TeX \text \textbf \textcircled \textcolor
  732. token: \textcompwordmark \textfloatsep \textfraction \textheight \textit
  733. token: \textmd \textnormal \textrm \textsc \textsf \textsl \textstyle
  734. token: \texttt \textup \textwidth \thanks \the \Theta \theta \thicklines
  735. token: \thinlines \thispagestyle \tilde \tiny \times \title \to \today \top
  736. token: \topfigrule \topfraction \topmargin \topsep \topskip \totalheight
  737. token: \triangle \triangleleft \triangleright \tt \ttdefault \ttfamily
  738. token: \twocolumn \typein \typeout \u \umlauthigh \umlautlow \unboldmath
  739. token: \underbrace \underline \unitlenght \unlhd \unrhd \Uparrow \uparrow
  740. token: \updefault \Updownarrow \updownarrow \uplus \upshape \Upsilon
  741. token: \upsilon \usebox \usecounter \usefont \usepackage \v \value
  742. token: \varepsilon \varphi \varpi \varrho \varsigma \vartheta \vdash \vdots
  743. token: \vec \vector \vee \verb \verb* \vfill \visible \vline \voffset \vspace
  744. token: \vspace* \wedge \whiledo \widehat \widetilde \width \wp \wr \Xi \xi
  745. token: \ymail \yref \zeta
  746.  
  747. color: darkcyan, normal, darkcyan, bold
  748. token: abstract alltt appendix array center description displaymath
  749. token: document enumerate eqnarray eqnarray* equation figure figure*
  750. token: filecontents filecontents* flushleft flushright fussypar itemize
  751. token: list lrbox math minipage note overlay picture quotation quote
  752. token: samepage slide sloppypar tabbing table table* tabular tabular*
  753. token: thebibliography theindex theorem titlepage topnumber totalnumber
  754. token: trivlist verbatim verbatim* verse
  755.  
  756. color: darkgreen, normal, darkgreen, bold
  757. token: 10pt 11pt 12pt a4 a4paper article austrian babel book fleqn float
  758. token: french ftnright german graphics identfirst latexsym leqno letter
  759. token: longtable makeidx multicol proc report twocolumn twoside USenglish
  760. token: verb verse
  761.  
  762. color: red, normal, red, bold
  763. symbol: #$&{}()[]\
  764.  
  765. color:  darkgray, normal, darkgray, outline
  766. eolCom: %
  767. comCol: 0
  768.  
  769.  
  770. #==================================================================
  771. # Syntax highlighting for LATEX files
  772.  
  773. files: *.tst
  774. #==================================================================
  775. # Predefined color names (case sensitive):
  776. #
  777. color: black, normal, black, bold
  778. token: black
  779.  
  780. color: white, normal, white, bold
  781. token: white
  782.  
  783. color: blue, normal, blue, bold
  784. token: blue
  785.  
  786. color: red, normal, red, bold
  787. token: red
  788.  
  789. color: pink, normal, pink, bold
  790. token: pink
  791.  
  792. color: green, normal, green, bold
  793. token: green
  794.  
  795. color: cyan, normal, cyan, bold
  796. token: cyan
  797.  
  798. color: yellow, normal, yellow, bold
  799. token: yellow
  800.  
  801. color: darkgray, normal, darkgray, bold
  802. token: darkgray
  803.  
  804. color: darkblue, normal, darkblue, bold
  805. token: darkblue
  806.  
  807. color: darkred, normal, darkred, bold
  808. token: darkred
  809.  
  810. color: darkpink, normal, darkpink, bold
  811. token: darkpink
  812.  
  813. color: darkgreen, normal, darkgreen, bold
  814. token: darkgreen
  815.  
  816. color: darkcyan, normal, darkcyan, bold
  817. token: darkcyan
  818.  
  819. color: brown, normal, brown, bold
  820. token: brown
  821.  
  822. color: palegray, normal, palegray, bold
  823. token: palegray
  824.  
  825.  
  826. #==================================================================
  827. # Syntax highlighting for PASCAL
  828.  
  829. files: *.pas *.inc
  830.  
  831. sectionRegexp: (^[ ]*)([pP]rocedure|[fF]unction|PROCEDURE|FUNCTION)[ ]+([a-zA-Z0-9_\$]+)
  832. sectionDisplayRegexp: (^[ ]*)([pP]rocedure|[fF]unction|PROCEDURE|FUNCTION)[ ]+([a-zA-Z0-9_\$]+)
  833. sectionBrowserMainKey:   3
  834. sectionBrowserOrder: 2, 3
  835. sectionDisplayOrder: 2, 3
  836. sectionDisplay: 4000, 500
  837.  
  838. caseSensitive: no
  839. checkCommentInString: no
  840.  
  841.  
  842. color: blue, normal, blue, bold
  843. token: AND ARRAY ASM BEGIN BOOLEAN BYTE CASE CHAR COMP CONSTRUCTOR
  844. token: CONST DESTRUCTOR DIV DOUBLE DOWNTO DO ELSE END EXIT
  845. token: EXTENDED EXTERNAL FALSE FILE FORWARD FOR FUNCTION GOTO IF
  846. token: IMPLEMENTATION INTEGER INTERFACE IN LABEL LONGINT MOD NIL
  847. token: NOT OBJECT OF OR OTHERWISE PACKED PRIVATE PROCEDURE
  848. token: PROGRAM REAL RECORD REPEAT SEGMENT SET SHL SHR SHORTINT
  849. token: SINGLE STRING THEN TO TRUE TYPE UNIT UNTIL USES VAR VIRTUAL
  850. token: WHILE WITH WORD XOR
  851.  
  852. color: red, normal, red, bold
  853. token: ABS ARCTAN CHR COS DISPOSE EOF EOLN EXP GET LN NEW ODD ORD PACK
  854. token: PAGE PRED PUT READLN READ RESET REWRITE ROUND SIN SQRT SUCC TRUNC
  855. token: UNPACK WRITELN WRITE
  856.  
  857. color: red, normal, red, bold
  858. symbol: @().=*+-/[],$#<>:;{}^
  859. literal:
  860.  
  861. color:  darkgreen, normal, darkgreen, bold
  862. funcParml:  (
  863.  
  864. color: darkpink, normal, darkpink, italic
  865. string: '
  866. char:
  867.  
  868. color: darkcyan, normal, darkcyan, outline
  869. openCom:  {
  870. closeCom: }
  871. eolCom:
  872. comCol:
  873.  
  874. caseSensitive:  no
  875. checkCommentInString: no
  876.  
  877.  
  878. #==================================================================
  879. # Syntax highlighting for Ada
  880.  
  881. files:  *.ads *.adb
  882.  
  883.  
  884. # colors
  885. defineColor: myDarkBlue      0   0 200
  886. defineColor: myDarkerBlue    0   0 160
  887. defineColor: myDarkRed     180   0   0
  888. defineColor: myLightGray   220 220 220
  889.  
  890. # Ada 95 (ISO/IEC 8652:1995) reserved words
  891. color: myDarkBlue, normal, myDarkBlue, bold
  892. token:  abort          else           new            return
  893. token:  abs            elsif          not            reverse
  894. token:  abstract       end            null
  895. token:  accept         entry                         select
  896. token:  access         exception                     separate
  897. token:  aliased        exit           of             subtype
  898. token:  all                           or
  899. token:  and            for            others         tagged
  900. token:  array          function       out            task
  901. token:  at                                           terminate
  902. token:                 generic        package        then
  903. token:  begin          goto           pragma         type
  904. token:  body                          private
  905. token:                 if             procedure
  906. token:  case           in             protected      until
  907. token:  constant       is                            use
  908. token:                                raise
  909. token:  declare                       range          when
  910. token:  delay          limited        record         while
  911. token:  delta          loop           rem            with
  912. token:  digits                        renames
  913. token:  do             mod            requeue        xor
  914.  
  915. # set the characters which open/close string and character constants
  916. color:  darkpink, normal, darkpink, italic
  917. string:  "
  918. char:    '
  919.  
  920. # package Standard
  921. color:  myDarkerBlue, normal, myDarkerBlue, bold
  922. token:  boelean integer natural positive float character wide_character
  923. token:  string duration constraint_error program_error storage_error tasking_error
  924.  
  925. color:  myDarkRed, normal, myDarkRed, bold
  926. symbol: ().,:;'<>=&+-/*
  927.  
  928. # comments
  929. color:  darkcyan, normal, darkcyan, outline
  930. eolCom: --
  931.  
  932.  
  933.  
  934.  
  935. #==================================================================
  936. # Syntax Highlighting for HTML files
  937.  
  938. files: *.html *.htm
  939.  
  940. sectionRegexp:         <[Hh][1-6]
  941. sectionDisplayRegexp:  (<[Hh][1-6]>)(.*)(</[Hh][1-6]>)
  942. sectionBrowserMainKey: 2
  943. sectionBrowserOrder:   2
  944. sectionDisplayOrder:   2
  945. sectionDisplay: 4000, 1000
  946.  
  947. caseSensitive: no
  948. checkCommentInString: no
  949.  
  950. defineColor: myDarkYellow  160 160   0
  951. defineColor: myDarkBlue      0   0 150
  952. defineColor: myDarkRed     200   0   0
  953.  
  954. # Tags
  955. color: myDarkRed, normal, myDarkRed, bold
  956. # Level 0 tags
  957. token: <H1 </H1> <H2 </H2> <H3 </H3> <H4 </H4> <H5 </H5> <H6 </H6>
  958. token: <HTML </HTML> <HEAD </HEAD> <BODY </BODY> <TITLE </TITLE> <BASE </BASE>
  959. token: <ISINDEX </ISINDEX> <LINK </LINK> <META </META> <NEXTID </NEXTID>
  960. token: <BLOCKQUOTE </BLOCKQUOTE> <A </A> <IMG <P </P> <BR <HR <PRE </PRE>
  961. token: <UL </UL> <OL </OL> <LI <DL </DL> <DD <DT <MENU </MENU> <DIR </DIR>
  962. token: <ADDRESS </ADDRESS>
  963. # Level 1 tags
  964. token: <CITE </CITE> <CODE </CODE> <EM </EM> <KBD </KBD> <SAMP </SAMP> <STRONG </STRONG>
  965. token: <VAR </VAR> <B </B> <I </I> <TT </TT>
  966. # Level 2 tags
  967. token: <FORM </FORM> <INPUT </INPUT> <SELECT </SELECT> <OPTION </OPTION> <TEXTAREA </TEXTAREA>
  968. # Level 3 tags
  969. token: <STYLE </STYLE> <SCRIPT </SCRIPT> <LINK </LINK> <APPLET </APPLET> <DIV </DIV> <MAP </MAP>
  970. token: <AREA <FONT <DFN </DFN> <Q </Q> <LANG </LANG> <AU </AU> <PERSON </PERSON> <ACRONYM </ACRONYM>
  971. token: <INS </INS> <DEL </DEL> <U </U> <STRIKE </STRIKE> <BIG </BIG> <SMALL </SMALL> <SUB </SUB>
  972. token: <SUP </SUP> <FIG </FIG> <CAPTION </CAPTION> <CREDIT </CREDIT> <TABLE </TABLE> <TR </TR> <TH <TD </TD>
  973. #Other tags
  974. token: <CENTER </CENTER> <XMP </XMP>
  975.  
  976. # Characters
  977. color: myDarkYellow, normal, myDarkYellow, bold
  978. # Latin 1 characters
  979. token: Á À Â Ã Å Ä Æ Ç
  980. token: É È Ê Ë Í Ì Î Ï Ð
  981. token: Ñ Ó Ò Ô Õ Ö Ø Ú
  982. token: Ù Û Ü Ý Þ ß á à
  983. token: â ã å ä æ ç é è
  984. token: ê ë í ì î ï ð ñ ó
  985. token: ò ô õ ö ø ú ù û
  986. token: ü ý þ ÿ
  987. # Other characters
  988. token:   ¡ ¢ £ ¤ ¥ ¦ § ¨ ª
  989. token: « ¬ ­ ¯ ° ± ² ³ ´ µ
  990. token: × ÷ ¶ · ¸ ¹ º » ¼
  991. token: ½ ¾ ¿
  992. # Level 0 characters
  993. token: < > & "
  994. # Level 3 characters
  995. token: © ®
  996.  
  997. # Attributes
  998. color: myDarkBlue, normal, myDarkBlue, bold
  999. # Level 0 attributes
  1000. token: Alt Href Name Rel Rev Urn Title Methods Http-equiv Content Compact Ismap
  1001. # Level 2 attributes
  1002. token: Action Method Enctype Checked Maxlength Size Src Type Text Value Multiple
  1003. token: Selected Rows Cols
  1004. # Level 3 attributes
  1005. token: Version Background BGColor Link VLink ALink Shape Coords Align Nohref
  1006. token: Noshade Width Height Md Border Vspace Hspace Usemap Rowspan Colspan
  1007. token: Cellspacing Cellpadding Valign Nowrap
  1008.  
  1009. # Values
  1010. color: darkgreen, normal, darkgreen, bold
  1011. # Level 0 values
  1012. token: top middle bottom
  1013. # Level 2 values
  1014. token: get post checkbox hidden image password radio reset submit text
  1015. # Level 3 values
  1016. token: Home ToC Index Glossary Copyright Up Next Previous Help Bookmark StyleSheet
  1017. token: rect poly circle left right center disc circle square justify baseline
  1018.  
  1019. # Comments
  1020. color: darkcyan, normal, darkcyan, outline
  1021. openCom: <!-
  1022. closeCom: -->
  1023.  
  1024. # Strings
  1025. color: darkpink, normal, darkpink, italic
  1026. string: "
  1027.  
  1028. # Symbols for tags
  1029. color: myDarkRed, normal, myDarkRed, bold
  1030. symbol: <>
  1031.  
  1032. # Other symbols
  1033. color: blue, normal, blue, bold
  1034. symbol: =
  1035.  
  1036.  
  1037.